/********************************	
	Developed by AXA Studios
	The Creative Engine
	http://www.axastudios.com
*********************************/

:root {
    --main-color: #FFFFFF;
    --sub-color: #D35983;
	--bg-color: #D67093;
	--light-bg-color: #D67093;	
	
	--hover-color: #D35983;
    --grey-color: #AAAAAA;
    --light-color: #EEEEEE;
    --border-color: #363636;	
    --white-color: #FFFFFF;
	--input-bg: #E488A7;
	--input-focus-bg: #F5B6CC;
    --green-color: #129447;
    
	--border-radius: 7px;
	--lg-border-radius: 25px;
	
    --main-pad: 24px;
    --sm-pad: 16px;
    --xs-pad: 8px;
    --lg-pad: 48px;
    --xl-pad: 96px;
    --main-neg: -24px;
    --lg-neg: -48px;
	
    
}

/* MAIN STYLES *****************************/

html {
/*	overflow-y: scroll;*/
	margin: 0;
	padding: 0;
}
body {
	padding: 0px;
	margin: 0px;
	background:var(--bg-color);
    font-family: 'Outfit', Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-size:14px;
	line-height: 1.6;
    color: var(--main-color);
}
	
/* TEXT & LINK STYLES *****************************/

h1, h2, h3, h4, h5, h6 {
	font-family: 'Outfit', Arial, Helvetica, sans-serif;
	margin-top: 0px;
}
h1{
	font-size:36px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.2;
}
h2{
	font-size:30px;
	font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.2;
}
h3{
	font-size:20px;
	font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.2;
}
h4{
	font-size:16px;
	font-size:var(--sm-pad);
    font-weight: 500;
    margin-bottom: 4px;
/*    text-transform: uppercase;*/
}

.italic{
	font-style:italic;
}
p{
    margin-bottom: 3rem;
    margin-bottom: 2.4rem;
}
.lead{
    font-weight: 300;
	font-size: 26px;
    margin-bottom: 1.6rem;
    line-height: 1.4;
	color: var(--grey-color);
}
:focus{
	-moz-outline-style:none;
}	
::selection{
	background-color:#333333;
	color:#fff;
}	
::-moz-selection{
	background-color:#333333;
	color:#fff;
}
img{
	max-width: 100%;
}
input:focus, button:focus {
	outline: none; 
}

a{
    color: var(--main-color);
	border: none;
	outline:0;
	-moz-outline-style:none;
}
a:hover, a:focus, a:active, a:visited{
	text-decoration: none;
	color: inherit;
}
a img {
	border: none;
	outline:0;
	-moz-outline-style:none;
}
input.button, .button, .button:visited, .w-btn, .b-btn{
	position: relative;
	cursor: pointer;
	color: var(--sub-color);
	line-height: 28px;
	font-size: 14px;
/*    text-transform: uppercase;*/
    letter-spacing: 0px;
	font-weight: 600;
	border: 1px solid var(--white-color);
	border-radius: var(--border-radius);
	outline: none;
	background: var(--white-color);
	text-align: center;
	transition: all 0.2s;
    text-decoration: none;
}
a.button, .button {
    color: var(--sub-color);
	display: inline-block;
	text-decoration: none!important;
	padding: 9px 32px 9px 32px;
}
.button:hover, .button:active, .button:focus, .button.o-btn:hover, .button.o-btn:active, .button.o-btn:focus {
	color: var(--white-color);
    background: var(--hover-color);
    border: 1px solid var(--hover-color);
    box-shadow: none;
}

.button.disabled{
	opacity: 0.48;
	pointer-events: none;
}

.banner-btn:hover, .banner-btn:active, .banner-btn:focus{
    background: none;
    color: var(--white-color);
	border: 1px solid rgba(255, 255, 255, 1);  
}
.w-btn, .w-btn:visited {
    display: inline-block;
	text-decoration: none;
	padding: 9px 32px 9px 32px;
    background: none;
    color: var(--white-color);
	border: 1px solid rgba(255, 255, 255, 1);  
}
.w-btn:hover, .w-btn:active, .w-btn:focus {
	color: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.7);
    background: none;
}
.b-btn, .b-btn:visited, a.b-btn, a.b-btn:visited {
    display: inline-block;
	text-decoration: none;
	padding: 9px 32px 9px 32px;
	color: var(--white-color);
	border: 1px solid var(--white-color);     
    background: none;
}
.b-btn:hover, .b-btn:active, .b-btn:focus, a.b-btn:hover, a.b-btn:active, a.b-btn:focus {
	color: var(--white-color);
	border: 1px solid var(--white-color);   
    background: rgba(238, 238, 238, 0.24);
}
.btn-clean{
    display: inline-block;
	border: none;
	background: none;
    line-height: 20px;
	font-size: 14px;
	font-weight: 700;
    padding: 10px 40px;
}
.btn-clean.clean-light{
    color:rgba(14,31,59,0.25);
}

.button.i-btn{
	width: 48px;
	padding: 11px 12px;
	font-size: 24px;
}
.i-btn i{
	display: block;
	width: 24px;
	height: 24px;
	line-height: 24px;
	vertical-align: top;
}
.txt-link, a.txt-link{
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: var(--sub-color);
    transition:0.2s ease all;
}
.txt-link:hover{
    color: var(--main-color);
    transition:0.4s ease-out all;
}

/* FORM STYLES *****************************/

.form-wrap{
    position: relative;
}
.form-wrap .row{
    position: relative;
/*    margin-bottom: var(--main-pad);*/
}
.row.form-cols{
    margin-left: -12px;
    margin-right: -12px;
}
.form-col{
}
.form-col{
    position: relative;
    display: block;
    width: 50%;
    padding-right: 12px;
    padding-left: 12px;
}
.form-col-lg{
	width: 66.66%;
}
.form-col-sm{
	width: 33.33%;
}
.row.form-small-row{
    margin: 0;
    width: 100%;
}
.form-title h3{
    margin: 0;
}
.form-group{
    position: relative;
    display: block;
/*    padding: 0px;*/
    margin-bottom: var(--main-pad);
}
.form-inline{
	display: flex;
	flex-direction: row;
    margin-left: -12px;
    margin-right: -12px;
}
.form-inline .form-group{
	margin-bottom: 0;
}
.form-inline .form-control{
	width: 100%;
	max-width: 100%;
}
.form-inline .button{
	width: 100%;
}
.form-control{
    font-size: 14px;
	height: 48px;
	border-radius: var(--border-radius);
    padding-right: var(--sm-pad);
	padding-right: 32px;
    padding-left: var(--sm-pad);
	color: var(--main-color);
	border: 1px solid var(--input-bg);
	background: var(--input-bg);
	font-weight: 400;
	transition: border-color .15s ease-in-out, background .15s ease-in-out;
}
.form-control:focus{
	box-shadow: none;
	color: var(--main-color);
	background: var(--input-focus-bg);
	border: 1px solid var(--input-focus-bg);
}
.form-title{
    position: relative;
    display: block;
    width: 100%;
    padding-right: var(--main-pad);
    padding-left: var(--main-pad);
    margin-bottom: var(--sm-pad);
}
.form-matd{
	position: relative;
}
.form-group.select-box{
/*    margin-top: 20px;*/
}
h3 + .form-group.select-box{
    margin-top: 20px;
}
.form-matd input, .form-matd textarea{
	padding: 11px 24px 11px 24px;
	padding: 11px 16px 11px 16px;
    line-height: 24px;
	border-radius: 0px;
	border: 0px;
	border-radius: 24px;
    padding-right: var(--main-pad);
    padding-left: var(--main-pad);
	color: var(--main-color);
	border: 1px solid var(--input-bg);
	background: var(--input-bg);
    box-shadow: none;
}
.form-control::placeholder {
	color: var(--main-color);
    opacity: 1;
}
.form-matd textarea{
    min-height: 80px;
    min-height: 120px;
}
.form-matd input:focus, .form-matd textarea:focus{
    border: none;
    outline: none;
	background: var(--input-focus-bg);
    color:var(--main-color);
	border: 1px solid var(--sub-color);
}
/*
.form-matd input.input-error{
    border: 2px solid var(--orange-color);
}
*/

.form-matd .form-control:focus{
    box-shadow: none;
    outline: none;
	background: var(--input-focus-bg);
}
.form-matd .form-border{
	position: absolute;
	width: 0;
	height: 2px;
	bottom:-1px;
	bottom:0px;
	left: 50%;
	background: var(--sub-color);
    background: #3aaeea;
	transition:0.2s ease all;
	-webkit-transition:0.2s ease all;
}
input:focus ~ .form-border, textarea:focus ~ .form-border {
	left: 0px;
  	width:100%;
    transition:0.3s ease all;
	-webkit-transition:0.3s ease all;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition-delay: 9999s;
    -webkit-transition: color 9999s ease-out, background-color 9999s ease-out;
}
.form-matd label, 
.form-matd input:invalid ~ label,
.form-matd input.input-empty ~ label{
	position:absolute;
	color:var(--white-color);
	font-weight:normal;
	pointer-events:none;
	left:0px;
	top:20px;
    font-size: 14px;
    font-weight: 400;
	transition:0.2s ease all;
	-webkit-transition:0.2s ease all;
}
.form-col input:focus ~ .form-border, .form-col textarea:focus ~ .form-border {
	left: var(--main-pad);
    width:calc(100% - var(--lg-pad));
}
.form-matd.form-col label, .form-matd.form-col input:invalid ~ label {
	left: var(--main-pad)!important;
}
    
.form-matd input:focus ~ label, 
/*.form-matd input:valid ~ label, */
.form-matd input.input-filled ~ label,
.form-matd input:required:valid ~ label, 
.form-matd textarea:focus ~ label, 
.form-matd textarea.input-filled ~ label,
.form-matd textarea:required:valid ~ label {
	top:0px;
	color:var(--white-color);
	font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
}

.form-matd label.error, #reg-check-error{
    position: absolute;
    top: auto!important;
    bottom: -25px;
    font-weight: 400;
    color: #ee0000!important;
    font-size: 10px!important;
    text-transform: uppercase;
}
.form-matd label.error, .form-group .error-text, .select-box .error-text, .checkbox .error-text, .form-captcha .error-text{
    position: absolute;
    top: auto!important;
    bottom: -18px;
    font-weight: 400;
    color: #ee0000!important;
    font-size: 12px!important;
	line-height: 20px;
/*	padding-left: var(--main-pad);*/
}
.checkbox .error-text{
    bottom: -4px;
    bottom: -16px;
	left: 12px;
	left: 34px;
}
.form-captcha .error-text{
    
}

.form-group.is-valid:after {
	content: "\f00c";
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 40px;
	height: 48px;
	top: 0;
	right: 0px;
	font-size: 16px;
	color:var(--sub-color);
	z-index: 1;
	font-family: "Font Awesome 5 Pro";
}
.form-cols .form-group.is-valid:after {
	right: 12px;
}

.form-control:disabled, .form-control[readonly], .form-control:disabled:focus, .form-control[readonly]:focus {
    background: #FFFFFF;
	border: 1px solid var(--border-color);
/*	text-align: center;*/
	font-weight: 500;
    opacity: 1;
	cursor: default;
}

.form-group-lg{
	margin-bottom: 32px;
}
.form-group-lg .form-col{
	margin-bottom: 0;
}
.form-code-input{
	display: flex;
	margin-left: -8px;
	margin-right: -8px;
}
.form-code-input .form-input-sm{
	width: 16.6666%;
    font-size: 32px;
	height: 72px;
	text-transform: uppercase;
	text-align: center;
	border-radius: var(--border-radius);
    padding: var(--sm-pad) var(--xs-pad);
    margin: 0 var(--xs-pad);
	color: var(--main-color);
	border: 1px solid var(--border-color);
	background: var(--white-color);
	font-weight: 600;
}
.form-input-sm::placeholder {
	color: var(--border-color);
    opacity: 1;
}
.form-code-input .form-input-sm.filled{
	border: 1px solid var(--grey-color);
	border: 1px solid var(--border-color);
}
.form-code-input .form-input-sm:focus{
	box-shadow: none;
	color: var(--main-color);
	background: var(--white-color);
	border: 1px solid var(--sub-color);
}
#game-start-code-error.error-text{
	width: 100%;
	text-align: center;
	bottom: -24px;
	padding-left: 0;
}


.form-btm{
    margin-top: 10px;
}

.form-btns{
    text-align: center;
}
.form-btns .button{
	min-width: 50%;
	width: 100%;
}
.form-btns .button + .button{
	margin-top: 16px;
}
.form-btn{
    margin-bottom: 0;
}

.ch-btn{
	position: relative;
	display: inline-block;
	display: block;
	vertical-align: middle;
	line-height: 24px;
}
.ch-btn input[type="checkbox"]{
    position: absolute;
    left: 49%;
	visibility: hidden;
    height: 1px;
    z-index: 0;
}
.ch-btn label{
	position: relative;
	display: block;
    font-size: 14px;
    font-weight: 400;
	color: var(--main-color);
	padding-left: 36px;
    line-height: var(--main-pad);
    z-index: 1;
}
.ch-btn label span{
	position: absolute;
	display: block;
	height: var(--main-pad);
	width:var(--main-pad);
	top: 0px;
	left: 0px;
    border: 1px solid var(--white-color);
	border-radius: 3px;
	z-index: 1;
	text-align: center;
	font-size: 14px;
    color: var(--white-color);
/*	background: var(--bg-color);*/
	background: transparent;
}

.ch-btn label:hover span{
	cursor: pointer;
	border: 1px solid var(--white-color);
}
.ch-btn label:hover span i{
	opacity: 0.7;
}
.ch-btn input[type="checkbox"]:checked + label span{
	color: var(--sub-color);
	background: var(--white-color);
    border: 1px solid var(--white-color);
}
.ch-btn label i{
	display: none;
	height: var(--main-pad);
	line-height: var(--main-pad);
}
.ch-btn label:hover i, .ch-btn input[type="checkbox"]:checked + label i{
	display: block;
	opacity: 1;
}
.ch-btn a{
    text-decoration: underline;
	color: var(--main-color);
}
.ch-btn a:hover{
    text-decoration: none;
}

/* HEADER STYLES *****************************/

#header{
	position: fixed;
	display: flex;
/*	justify-content: flex-end;*/
	top: 0;
	left: 0;
	width: 100%;
	padding: 24px 24px;
	pointer-events: none;
/*
	background: var(--bg-color);
	box-shadow: 0px 1px 1px rgba(255,255,255,0.16);
*/
	z-index: 1051;
}
#header a {
	pointer-events: initial;
}
.logo-main{
	position: relative;
	margin-right: 24px;
	/*order: 2;*/
}
.logo-main img{
	height: 72px;
	width: auto;
}
.header-logo-sub {
	/* display: none; */
    align-self: flex-end;
}
.header-logo-sub img {
	height: 48px;
	width: auto;
}
.nav-btns{
	display: flex;
/*	align-self: flex-end;*/
	margin-left: auto;
}
.nav-btns .button{
	margin-left: 24px;
	pointer-events: all;
}

#header .btn-clean {
	background: var(--sub-color);
	color: var(--white-color);
	padding: 11px 20px 11px 24px;
	border-radius: var(--border-radius);
	line-height: 24px;
	height: 48px;
	border: 1px solid var(--sub-color);
	
	
	
}
#header .btn-clean:hover {
	border: 1px solid var(--hover-color);
	background: var(--hover-color);
	/*
	border: 1px solid var(--sub-color);
	background: var(--sub-color);
*/
}
#header .btn-clean span {
	font-weight: 700;
	line-height: 24px;
	vertical-align: initial;
	text-transform: none;
}
#header .btn-clean i {
	width: 24px;
	height: 24px;
	font-size: 16px;
	line-height: 24px;
	margin-left: 8px;
}

#header .dropdown-menu {
	right: initial !important;
	left: -20px !important;
	border: none;
	border-radius: var(--border-radius);
	padding: 12px 24px 12px 12px;
	overflow: hidden;
	overflow: initial;
	margin: 0;
	margin-top: 20px;
	background: var(--sub-color);
	box-shadow: 0px 7px 16px rgba(0, 0, 0, 0.3);
	opacity: 0;
}
#header .dropdown-menu.show {
	-webkit-animation: opac-in-animate 0.4s ease-out forwards;
	animation: opac-in-animate 0.4s ease-out forwards;
}

#header .dropdown-menu:before {
	display: flex;
	position: absolute;
	flex-direction: column;
	justify-content: flex-end;
	right: 44px;
	top: -16px;
	width: 24px;
	height: 24px;
	color: var(--sub-color);
	content: "\f2ec";
	font-family: "Font Awesome 5 Pro";
	font-style: normal;
	font-weight: 900;
	font-size: 18px;
	z-index: 1;
	text-shadow: 0px -2px 3px rgba(0, 0, 0, 0.12);
}
.dropdown-item, .dropdown-item:visited {
	display: block;
	width: 100%;
	padding: 0px;
	line-height: 48px;
	clear: both;
	font-weight: 400;
	color: var(--white-color);
	text-align: inherit;
	white-space: nowrap;
	background-color: transparent;
	opacity: 1;
	transition: opacity 0.2s ease;
	border: 0;
}
.dropdown-item i {
	display: inline-block;
	width: 48px;
	height: 48px;
	text-align: center;
	font-size: 16px;
	line-height: 48px;
}
.dropdown-item:hover,
.dropdown-item:focus {
	color: var(--white-color);
	background: none;
	opacity: 0.8;
}
.dropdown-item.active,
.dropdown-item:active {
	color: var(--white-color);
	background: none;
	opacity: 0.8;
}

/* WRAPPER STYLES *****************************/

#outer-wrapper{
	position: relative;
	min-height: 100vh;
	background:var(--bg-color);
/*
	background: url(../images/background-main.jpg) top center no-repeat;
	background-size: cover;
*/
}
/*
#outer-wrapper img{
	display: block;
	max-width: 100%;
}
#bg-wrapper {
    position: fixed;
	content:'';
	display: none;
	opacity: 0;
	width:100%;
	height:100%;
	z-index: 10;
    background: rgba(10,34,41,0.9);
    background: rgba(10,34,41,1);
}
.menu-open #bg-wrapper{
    display: block;
    opacity: 1;
	animation: opac-in-animate 0.5s ease-out forwards;
}
.menu-ani #bg-wrapper {
    display: block;
	opacity: 1;
	animation: opac-out-animate 0.3s ease-in forwards;
}
*/

.main-container{
	position: relative;
	display: flex;
	flex-direction: row;
	min-height: 100vh;
/*	padding-top: 72px;*/
	background: var(--bg-color);
	background: url(../images/scanenwin-moederdag-background-desktop.jpg) right bottom no-repeat var(--bg-color);
	background-size: cover;
	z-index: 2;
}


/* CONTENT STYLES *****************************/

#header-bar{
	position: absolute;
	display: none;
	z-index: 3;
	top: 0;
	left: 0;
	width: 100%;
	height: 120px;
	height: 192px;
}

#content-main-image{
    position: relative;
	display: flex;
	display: none;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	width: 50%;
	background:var(--bg-color);
    z-index: 2;
}
/*
#content-main-image:after{
	content: '';
	display: block;
	position: absolute;
	right: -24px;
	top: 0;
	height: 100%;
	width: 48px;
	background: url(../images/waves-half.svg) top center repeat-y;
	background-size: 100% auto;
	z-index: 3;
}
*/
#content-game{
    position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	width: 50%;
/*	width: 100%;*/
    z-index: 2;
	padding-top: 96px;
	padding-bottom: 48px;	
	overflow: hidden;
/*	opacity: 0;*/
}
.content-main-logo{
	display: flex;
	align-self: flex-start;
	margin: 0 auto var(--main-pad) auto; 
	margin: 0 auto; 
	opacity: 0;	
	animation: top-in-animate 0.5s ease-out forwards;
	animation-delay: 0.4s;
}
.content-main-logo img{
	width: auto;
	height: 96px;
}


.content-main{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: auto;
	text-align: center;
	min-height: 80vh;
}

#start-content{
	display: none;
	opacity: 0;
}
#start-content-image{
	display: none;
}
#win-selection-content{
	display: none;
	opacity: 0;
	min-height: 54vh;
}
#win-content{
	display: none;
	opacity: 0;
}

#lost-content{
	display: none;
	opacity: 0;
}
#prize-anim-content {
	display: none;
	opacity: 0;
}
#start-content.show-content, 
#win-content.show-content, 
#lost-content.show-content, 
#win-selection-content.show-content,
#prize-anim-content.show-content{
	display: flex;
	opacity: 1;
	animation: zoomInUp 0.7s ease-out forwards;
}

#lost-content{
	display: none;
}

#win-content{
	display: none;
}

#check-email-verification-wrap{
	display: none;
}

#start-content.hide-content, #win-content.hide-content, #lost-content.hide-content, #win-selection-content.hide-content, #prize-anim-content.hide-content{
	animation: zoomOutDown 0.3s ease-out forwards;
}
#start-content.hide-content #start-content-image{
	opacity: 0;
}

/*
#start-content-wrap h3{
	margin-bottom: 24px;
}
*/


.content-block-main{
	position: relative;
	display: flex;
	flex-direction: column;
	background:var(--light-bg-color);
	width: 44%;
	min-width:512px;
	max-width: 512px;
	padding: 48px;
	margin: 0 auto;
	border-radius: var(--border-radius);
	box-shadow: 0px 15px 30px rgba(0,0,0,0.16);
/*
	
	background:rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
*/
}


.content-box-image{
	position: absolute;
	display: block;
	pointer-events: none;
	z-index: 3;
}
.content-box-image img{
	max-width: 100%;
}
.content-box-image-top{
	width: 64%;
	top: -13%;
	top: -83px;
	left: 18%;
}
.content-box-image-btm{
	width: 58%;
	bottom: -20%;
	left: -30%;
	opacity: 0;
}
.show-content .content-box-image-btm,
.check-email-verification .content-box-image-btm{
	animation: left-img-animate 0.6s ease-out forwards;
	animation-delay: 0.6s;	
}

.content-info-block{
	position: relative;
	display: flex;
	flex-direction: column;	
}
.content-info-block p{
	margin-bottom: 24px;
}
.content-info-block-image{
	position: relative;
	display: flex;
	flex-direction: column;	
	align-items: center;
	margin-bottom: 16px;
}
.content-info-block-image{
	display: none;
}
/*
.content-info-block-image img{
	max-width: 80%;
}
.content-info-block-image.img-small img{
	max-width: 60%;
}
*/

.content-info-block-image.img-normal{
	display: flex;
	margin-left: -48px;
	margin-right: -48px;
	margin-top: -48px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
	overflow: hidden;
}
.content-info-block-image.img-mob{
	display: none;
}
.content-main-buttons{
	position: relative;
	display: flex;
	flex-direction: column;
}
.content-main-buttons .button{
	width: 100%;
	margin-bottom: 12px;
}
#start-content-wrap h2 {
	margin-bottom: 48px;
}


.info-email-check{
	position: relative;
	margin: 0;
	padding:var(--sm-pad) var(--main-pad);
	border-radius: 11px;
	font-size: 16px;
	text-align: center;
	color: var(--sub-color);
	background: var(--light-bg-color);
	background: #E1B4C3;
	margin-bottom: var(--lg-pad);
	border: 2px dashed var(--white-color);
}

#win-selection-content.content-block-main{
	background: var(--light-bg-color);
}

.prize-main-wrapper{
	position: relative;
	display: flex;
	flex-direction: column;
	padding-bottom: 64px;
	padding-bottom: 0px;
}
.prize-main-wrapper:before{
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 20px;
	top: -8px;
	left: 0;
	background: linear-gradient(to bottom, rgba(214,112,147,1) 0%, rgba(214,112,147,0) 100%);
	pointer-events: none;
	z-index: 1;
}
.prize-main-wrapper:after{
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 24px;
	bottom: 64px;
	bottom: 0px;
	left: 0;
	background: linear-gradient(to bottom, rgba(214,112,147,0) 0%, rgba(214,112,147,1) 100%);
	pointer-events: none;
	z-index: 1;
}
.prize-wrapper{
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--light-bg-color);
	padding-top: 8px;
	margin-right: -12px;
	padding-right: 12px;
	max-height: 48vh;
	max-height: 56vh;
	overflow: hidden;
	overflow-y: auto;
	scrollbar-color: rgba(255, 255, 255, 0.24) rgba(255, 255, 255, 0.08);
	scrollbar-width: thin;
}
.prize-wrapper::-webkit-scrollbar {
	width: 8px;
	border-radius: 4px;
	cursor: pointer;
}
.prize-wrapper::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.08);
	cursor: pointer;
	border-radius: 4px;
}
.prize-wrapper::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.24);
	border-radius: 4px;
	cursor: pointer;
	transition: background 300ms ease;
}
.prize-wrapper::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.32);
	cursor: pointer;
}
.prize-option-badge{
	position: absolute;
	display: none;
	font-size: 10px;
	line-height: 16px;
	padding: 4px 12px;
	border-radius: 3px;
	top: 8px;
	right: 8px;
	background:var(--sub-color);
	background:var(--white-color);
	color: var(--sub-color);
	text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}
.prize-option-block.claimed .prize-claimed-badge{
	display: flex;
	opacity: 0.4;
}
.prize-option-block.exclusive .prize-exclusive-badge{
	display: flex;
	padding-left: 10px;
}
.prize-option-block.consolation-prize .prize-consolation-badge{
	display: flex;
}
.prize-option-badge i {
    line-height: 14px;
    margin-right: 4px;
}
.prize-option-block.claimed .prize-exclusive-badge,
.prize-option-block.claimed .prize-consolation-badge {
	display: none;
}


.prize-option-block{
	position: relative;
	display: flex;
	margin-bottom: var(--xs-pad);
	cursor: pointer;
}
.prize-option-block.claimed{
	pointer-events: none;
}
.prize-option-block.claimed .prize-option{
	opacity: 0.4;
	pointer-events: none;
}
.prize-option{
	position: relative;
	display: flex;
	width: 100%;
	overflow: hidden;
	cursor: pointer;
}
.prize-option-bg{
	position: absolute;
	width: 100%;
	height: 100%;
/*	background:var(--sub-color);*/
	background: url(../images/voucher-desktop.svg) center bottom no-repeat;
	background-size: 100% 100%;
	z-index: 0;
	transition: all 0.2s ease;
}
.prize-option-bg:before,
.prize-option-bg:after{
	position: absolute;
/*
    content: "";
    display: block;
*/
	display: none;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    background: var(--light-bg-color);
    border-radius: 50%;
	border: 2px solid var(--light-bg-color);
}
.prize-option-bg:before{
    left: -10px;
}
.prize-option-bg:after{
    right: -10px;
}
/*
.prize-option input[type=radio]:checked ~ .prize-option-bg:before,
.prize-option input[type=radio]:checked ~ .prize-option-bg:after{
	border: 2px solid var(--white-color);
}
*/
.prize-option .prize-option-input{
	position: absolute;
	visibility: hidden;
	opacity: 0;
}
.prize-img-block{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 96px;
	padding: 20px 16px 20px 24px;
	height: 100%;
}
.prize-img-block:after{
	content: '';
	position: absolute;
	display: block;
	width: 1px;
	height: calc(100% - 32px);
	right: -1px;
	top: 16px;
	border-right: 2px dashed rgba(255,255,255,0.64);
	border-right: 2px dashed var(--input-focus-bg);
}
.prize-img-block img{
	width: 100%;
	height: auto;
}
.prize-option-content{
	position: relative;
	display: flex;
	flex-direction: column;
	width: calc(100% - 96px);
	padding: 16px;
	text-align: left;
	font-weight: 300;
	font-size: 12px;
	color: var(--white-color);
}
.prize-option-content .prize-name {
	position: relative;
	padding: 4px 0px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
}
.prize-description{
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	min-height: 56px;
}

.prize-claim-btn{
	position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
	z-index: 2;
}
.prize-claim-btn .button{
	width: 100%;
}

.prize-popup{
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.48);
	z-index: 2;
	border-radius: var(--border-radius);
	animation: opac-out-animate 0.3s ease-in forwards;
	pointer-events: none;
}
.show-prize-popup .prize-popup{
	pointer-events: auto;
	animation: opac-in-animate 0.4s ease-in forwards;
}
.prize-popup .close-btn{
	background: transparent;
	pointer-events: none;
}
.show-prize-popup .prize-popup .close-btn{
	pointer-events: auto;
}

.prize-popup-content{
	position: relative;
	display: flex;
	flex-direction: column;
/*
	background: var(--sub-color);
	background: var(--light-bg-color);
	padding: var(--main-pad); 
*/
	padding: 0px;
	border-radius: var(--border-radius);
	box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.24);
	width: 72%;
	transform-origin: 50% 90%;
	transform: scale(0) translateY(50%);
	transition: transform 0.2s ease;
	animation: scale-down-animate 0.3s ease-out forwards;
}
.show-prize-popup .prize-popup-content{
	pointer-events: auto;
	animation: scale-up-animate 0.4s ease-out forwards;
	animation-delay: 0.4s;
}
.prize-popup-prize-shadow {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: var(--border-radius);
	z-index: 0;
	box-shadow: inset 0px 8px 24px rgba(0, 0, 0, 0.24);
}

.prize-popup-prize{
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--light-bg-color);
	border-radius: var(--border-radius) var(--border-radius) 0 0;
	padding: var(--main-pad) var(--main-pad) 0 var(--main-pad);	
	z-index: 2;
}

/*
.prize-popup-content{
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--light-bg-color);
	border-radius: var(--border-radius) var(--border-radius) 0 0;
	padding: var(--main-pad) var(--main-pad) 0 var(--main-pad);
	z-index: 2;
}
*/
.prize-popup-top{
	position: relative;
	display: flex;
	margin-bottom: 24px;
}
.prize-popup-img{
	position: relative;
	display: flex;
	flex-direction: column;	
	justify-content: center;
	width: 64px;
	height: 64px;
	background: var(--sub-color);
	padding: 8px; 
	border-radius: var(--border-radius);
}
.prize-popup-header{
	position: relative;
	display: flex;
	flex-direction: column;	
	justify-content: center;
	text-align: left;
	width: calc(100% - 64px);
	padding-left: 16px;
}
.prize-popup-header .prize-store{
	font-weight: 300;
}
.prize-popup-header .prize-name{
	line-height: 1.2;
}
.prize-popup-text{
	position: relative;
	max-height: 200px;
	overflow-y: auto;
	text-align: left;
	margin-bottom: 24px;
}
/*
.prize-popup-claim-btn:before{
	content: '';
	position: absolute;
	display: block;
	width: 80%;
	left: 10%;
	height: 2px;
	top: -26px;
	border-top: 2px dashed rgba(255,255,255,0.64);
}
*/
.prize-popup-claim-btn{
	position: relative;
	display: flex;
	padding: 36px 24px 24px 24px;
	background: url(../images/voucher-popup.svg) center bottom no-repeat;
	background-size: 100% 100%;
	border-radius: 0 0 var(--border-radius) var(--border-radius);
	z-index: 2;
}
.prize-popup-claim-btn button{
	width: 100%;
}

.close-btn {
	position: absolute;
	right:24px;
	top:24px;
	opacity: 1;
	margin: 0px;
	width:24px;
	height:24px;
	padding: 4px;
	line-height:24px;
	text-align: center;
	border: none;
}
.close-btn img{
	vertical-align: top;
}

.content-block-main .ch-btn label{
	text-align: left;
}
.input-lg .form-control{
	height: 64px;	
	letter-spacing: 35px;
	font-size: 32px;
	overflow: hidden;	
	padding-right: 0px;
	padding-left: 32px;
	color: var(--main-color);
	border: 1px solid var(--border-color);
	text-align: justify;
}
.input-lg .form-control:focus{
/*	background: #FFFFFF; */
	background: var(--input-focus-bg);
	border: 1px solid var(--sub-color);
}
#game-start-code{
	text-transform: uppercase;
}
#game-start-code::placeholder{
	text-transform: none;
	opacity: 0.6;
}

.disclaimer-text{
	color:var(--light-color);
	font-size: 12px;
	font-weight: 300;
}

/*
.animate #content-game{
	animation: opac-in-animate 0.5s ease-in forwards;
	animation-delay: 0.5s;
}
*/

#start-content-wrap{
	position: relative;
}

.game-animate #start-content-wrap{
	animation: opac-out-animate 0.2s ease-in forwards;
}

#game-animation{
	display: none;
	position: absolute;
/*	background: var(--bg-color);*/
	flex-direction: column;
	justify-content: center;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	padding: 0px;
	border-radius: var(--border-radius);
}
.game-animate #game-animation{
	display: flex;
}

#game-animation-loader{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 100%;
}
#game-animation-main{
	position: relative;
	margin-top: -12.5%;
	/* margin-top: -40%; */
	opacity: 0;
}
.game-animate #game-animation-main{
	animation: opac-in-animate 0.3s ease-in forwards;
}

#game-tyre{
	position: relative;
	margin: 10%;
}
#game-tyre span{
	position: relative;
	display: block;
}
.game-animate #game-tyre{
	animation: roll-animate 0.8s ease-out forwards;
}
.game-animate #game-tyre span{
	animation: spin-animate 8.0s linear infinite;
	animation-delay: 0.5s;
}
#game-animation-title{
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	justify-content: flex-start;
/*	height: 48px;*/
	width: 100%;
	top: 56%;
	left: 0;
	padding: 0px 96px;
	opacity: 0;
}
.game-animate #game-animation-title{
	animation: zoom-in-animate 0.4s ease-out forwards;
	animation-delay: 0.6s;
}
#game-animation-title h2{
	margin: 0;
}
#game-animation-title span{
	position: relative;
	display: block;
/*
	font-size: 32px;
	line-height: 1.0;
	font-weight: 800;
	margin: 0;
	margin-top: -10%;
*/
}
#game-animation-title span div{
/*	color: rgba(255,255,255,0.32);*/
	color: var(--white-color);
	font-size: 16px;
}
.game-animate #game-animation-title span{
	animation: pulse 1.1s linear infinite;
	animation-delay: 0.9s;
	
}
.hide-content.game-animate #game-animation{
	animation: opac-out-animate 0.2s ease-in forwards;
}


@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes roll-animate {
	0% { transform:translateX(100%) rotate(130deg);}
	100% { transform:translateX(0%) rotate(0deg);}
}
@keyframes spin-animate {
	0% { transform:rotate(360deg);}
	100% { transform:rotate(0deg);}
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.10, 1.10, 1.10);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

#end-content-wrap, #before-start-wrap, #already-verified-wrap {
	display: none;
	position: absolute;
/*	background: var(--bg-color);*/
	flex-direction: column;
	justify-content: center;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	padding: 48px;
	border-radius: var(--border-radius);
	overflow: hidden;
	z-index: 1;
}

.end-game #start-content-wrap, .before-start #start-content-wrap, .already-verified #start-content-wrap, #check-email-verification-wrap {
	opacity: 0;
	z-index: 0;
}
.end-game #end-content-wrap,  .before-start #before-start-wrap, .already-verified #already-verified-wrap, #check-email-verification-wrap.check-email-verification{
	display: flex;
	animation: opac-in-animate 0.6s ease-in forwards;
}

/* GAME STYLES *****************************/



/* CONTACT MODAL *****************************/

.captcha-wrap{
	position: relative;
    display: inline-block;
	overflow: hidden;
    margin-bottom: -19px;
    margin-bottom: -9px;
/*    margin-top: 10px;*/
}
#captcha-box, #captcha-box-contact{
	position: relative;
    display: inline-block;
	overflow: hidden;
}
#captcha_check, #captcha_check_contact{
    position: absolute;
	margin-left: -99999px;
    margin-top: -999px;
	opacity:0;
    height: 1px;
    width: 1px;
}
.g-recaptcha, .g-recaptcha-contact{
/*
	-webkit-transform-origin:0 0;
	transform-origin:0 0;
	-webkit-transform:scale(0.9);
	transform:scale(0.9);
*/
}


.form-success{
    position: absolute;
    display: none;
    flex-direction: column;
    justify-content: center;
    top: 0;
    left: 0;
    padding: 48px;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    border-radius: 19px;
    z-index: 2;
}
.prize-success {
	display: none;
	opacity: 0;
}
.email-sent .form-success{
    display: flex;
}
.form-complete{
    text-align: center;
    font-size: 18px;
    opacity: 0;
}
.email-sent .form-complete, .prize-claimed .form-complete, .prize-claimed .prize-success{
	animation: opac-in-animate 0.6s ease-out forwards;
}
.form-complete h2{
    margin-bottom: 4px;
}
.form-complete-img{
	position: relative;
    display: block;
	text-align: center;
	padding: 0 30%;
    margin: 0px auto 16px auto;
}
.form-complete-img span{
	display: inline-block;
	width: 160px;
	height: 160px;
	padding: 10%;
	border-radius: 50%;
	border: 3px solid var(--light-color);
}
.form-complete-img img{	
	width: 100%;
	height: auto;
}
.form-complete p{
	padding: 0 10%;
	color: var(--grey-color);
	margin-bottom: 16px;
	line-height: 1.4;
}
.form-complete p span{
	font-size: 14px;	
}

.banner-form .modal-footer{
	padding-left: 0;
	padding-right: 0;
}

.prize-claimed .form-success, .prize-claimed .prize-success{
    display: flex;
/*	padding-top: 120px;*/
}
.prize-claimed .prize-content {
	display: none;
}


/* FOOTER *****************************/
	
#footer	{
	position:relative;
    display: block;
	text-align: center;
	opacity: 0;
	animation: opac-in-animate 0.5s ease-out forwards;
	animation-delay: 0.4s;	
}

.footer-main{
    position: relative;
    display: block;
    padding: var(--main-pad) 0;
    text-align: center;
	font-size: 12px;
	color: var(--light-color);
    z-index: 2;
}

.footer-nav{
	position: relative;
	display: flex;
	list-style: none;
	text-align: center;
	justify-content: center;
	margin: 0 0 12px 0px;
	padding: 0;
}
.footer-nav li{
	margin: 0;
	padding: 0 12px;
}
.footer-main div{
	margin-bottom: 0;
	line-height: 16px;
}
.footer-main div span{
	display: inline-block;
	line-height: 16px;
}
.footer-main div a{
    display: inline-block;
    text-align: center;
	line-height: 16px;
	padding: 0 4px;
}
.footer-main div a:hover{
    opacity: 0.48;	
}
.footer-main div img {
    height: 16px;
    width: auto;
    display: initial!important;
	vertical-align: bottom;
}

/*

.footer-left{
	position:relative;
	display: block;
    width: 25%;
    text-align: left;
}
.footer-logo{
	position:relative;
    margin-bottom: var(--lg-pad);
}
.footer-logo a{
    display: block;
    display: inline-block;
}
.footer-logo img{
	height: 40px;
	width: auto;
	display: inline-block;
    vertical-align: top;
}
*/


/* MODAL STYLES *****************************/

body.modal-open  {
	padding: 0px!important;
	overflow-y: hidden!important;
	max-height: 100vh;
	background-color: #02020202;
}
.modal-backdrop {
	background: var(--bg-color);
}
.modal-backdrop.in {
    /* opacity: 0.85; */
	opacity: 0.4;
}
.modal-backdrop.show{
    /* opacity: 0.9;	 */
	opacity: 0.6;
}
.modal{
	z-index: 9999;
}
.modal-dialog {
    width: 640px;
	min-width: 360px;
	max-width: 90%;
/*    margin: 10% auto 20px auto;*/
	margin: 0 auto;
	display: flex;
	min-height: 100%;
	flex-direction: column;
	justify-content: center;
}
.modal-content {
    position: relative;
    background: var(--light-bg-color);
	border: 0px;
    border-radius: var(--lg-border-radius);
    border-radius: 0;
    outline: 0px none;
    box-shadow: none;
	padding: 24px;
}
.modal-content .close {
	position: absolute;
	right:24px;
	top:24px;
	right:48px;
	top:48px;
	opacity: 1;
	margin: 0px;
	width:24px;
	height:24px;
	padding: 4px;
	line-height:24px;
	text-align: center;
	border: none;
}
.modal-content .close img{
	vertical-align: top;
}

.modal-logo{
	position: relative;
	padding: 0 20%;
	margin-top: -20%;
	z-index: 3;
}
.modal-header {
	padding: 24px 48px 24px 24px;
	padding: 24px 24px 24px 24px;
	border: 0px;
}
.modal-title{
	font-size: 20px;
	font-weight: 700;
}
.modal-header{
	text-align: center;
	color: var(--text-color);
}
.modal-header h2{
	display: block;
	width: 100%;
	margin-bottom: 0px;
}
.modal-header h2 span{
	display: block;
}
#modal-win .modal-header h2 span{
	color: var(--sub-color); 	
}
.modal-header p{
	text-align: center;
    margin: 0;
    margin-bottom: var(--main-pad);
}
.modal-body {
	padding: 0px 24px;
}
.modal-body h3{
	font-size: 16px;
	color: var(--text-color);
}
.modal-body p{
	text-align: center;
    margin: 0;
    margin-bottom: var(--lg-pad);
	color: var(--text-color);
}
.modal-body .form-inline .form-col{
	margin-bottom: var(--sm-pad);
}
.modal-body p span{
	font-weight: 700;
}
.modal-footer{
	padding: 24px;
	padding-top: 12px;
	border: 0px;
	text-align: left;
	
}
.modal-footer .b-btn{
	align-self: flex-start;
	margin-right: auto;
}
.modal-voucher{
	position: relative;
	margin-left: 10%;
	margin-right: 10%;
	padding: var(--main-pad);
	border-radius: var(--lg-border-radius);
	text-align: center;
	color: var(--sub-color);
	margin-bottom: var(--main-pad);
	border: 1px dashed var(--green-color);
	background: var(--input-bg);
}
.modal-voucher h3{
	color: var(--sub-color);
	font-size: 20px;
	margin-bottom: 4px;
}
#win-store{
	font-weight: 700;
}
#win-store-address{
	display: block;
}
#modal-newsletter-bonus {
	z-index: 9998;
}
#modal-terms .modal-dialog, #modal-faq .modal-dialog {
/*	width: 960px;*/
	text-align: left;
}
#modal-terms .modal-body, #modal-faq .modal-body{
/*
	position: relative;
	max-height: 75vh;
	overflow-y: auto;
	font-size: 14px;
	margin-right: 24px;
*/
}
#modal-terms .modal-body p, #modal-faq .modal-body p{
	text-align: left;
	margin-bottom: var(--main-pad);
}

.full-popup{
	background: var(--bg-color);
}
.full-popup h3{
	font-weight: 700;
	
}
.full-popup .modal-dialog{
	width: 100%;
	max-width: 100%;
	justify-content: flex-start;
	padding-top: 24px;
}
/*
.full-popup .modal-header{
	position: relative;
}
*/
.full-popup .modal-content .close {
	right: 24px;
	top: 0px;
}
.full-popup .modal-dialog .modal-content{
	padding: 0 30%;	
}

.full-popup .modal-body a{
    text-decoration: underline;
}
.full-popup .modal-body a:hover,
.full-popup .modal-body a:focus{
    text-decoration: none;
}

#modal-code, #modal-lost, #modal-win, #modal-over{
	z-index: 1050;
}

/*
#modal-code .modal-dialog {
	width: 420px;
	max-width: calc(100% - 32px);
}
*/
.modal-header-icon{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	text-align: center;
	color: var(--white-color);
	font-weight: 300;
	font-size: 40px;
	width: 48px;
	height: 48px;
	margin: 0 auto 32px auto;
}
#modal-newsletter-bonus .modal-dialog,
#modal-error .modal-dialog {
	width: 512px;
	max-width: 100%;
}
#modal-newsletter-bonus .modal-content,
#modal-error .modal-content{
	background: var(--light-bg-color);
	border-radius: var(--border-radius);
}
#modal-error .modal-content .close {
	right: 24px;
	top: 24px;
}
#modal-newsletter-bonus .modal-header,
#modal-error .modal-header{
	flex-direction: column;
	justify-content: center;
	padding-bottom: 16px;
}
#modal-error .modal-title{
	font-size: 30px;
	line-height: 1.2;
	font-weight: 500;
}
#modal-newsletter-bonus .modal-body,
#modal-error .modal-body{
	font-size: 16px;
	color: var(--white-color);   
}
#modal-error .modal-footer .button{
	width: 100%;
}
.modal-footer-buttons{
	display: flex;
	justify-content: space-between;
}
.modal-footer-buttons .button{
	width: calc(50% - 24px);
}

#modal-newsletter-bonus .modal-body a{
	text-decoration: underline;
}

/* OTHER STYLES *****************************/

#footer:after, .footer-copyright-content:after, .home-center-banner:after, .content-banner:after, .info-blocks:after, .content-blocks:after, .project-blocks:after, .project-blk-txt:after, .footer-menu ul:after, .form-wrap:after, .form-cols:after, .footer-content:after, .footer-left:after, .footer-right:after{
    content: '';
    display: block;
    clear: both;
}

.clear{
    display: block;
	clear:both;
}	
.no_border{
	border:none!important;
}
.mob-break{
	display: none;
}
.web-break{
	display: inline;
}

.grecaptcha-badge{
	right: -400px!important;
}

/* Loader *****************************************/

.waiting{
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.5);
    border-radius: var(--lg-border-radius);
	z-index: 9;
	text-align: center;
    vertical-align: middle;
}

.loader-wrap{
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    opacity: 0;
	animation: opac-in-animate 0.3s ease-out forwards;
}

.lds-ripple {
    display: block;
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-self: center;  
}
.lds-ripple div {
    position: absolute;
    border: 4px solid var(--sub-color);
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}





/* ANIMATIONS *****************************/

@keyframes  opac-in-animate {
	0% { opacity: 0;}
	100% { opacity: 1;}
}
@keyframes  opac-out-animate {
	0% { opacity: 1;}
	100% { opacity: 0;}
}
@keyframes zoom-in-animate {
	0% { transform:scale(0); opacity: 1;}
	100% { transform:scale(1); opacity: 1;}
}
@keyframes btn-animate {
	0%, 100% { transform:scale(1); }
	50% { transform:scale(1.1); }
}
@keyframes nav-animate {
	0% { transform:translateY(-100%); }
	100% { transform:translateY(0%);}
}
@keyframes highlight-animate {
	0%{ transform:scaleX(0); opacity: 1;}
	100% { transform:scaleX(1); opacity: 1; }
}
@keyframes left-in-animate {
	0% { transform:translateX(-50%) translateY(0%); opacity: 0;}
	50% { opacity: 1;}
	100% { transform:translateX(0%) translateY(0%); opacity: 1;}
}
@keyframes left-img-animate {
	0% { transform:translateX(-25%) translateY(0%); opacity: 0;}
	50% { opacity: 1;}
	100% { transform:translateX(0%) translateY(0%); opacity: 1;}
}
@keyframes right-in-animate {
	0% { transform:translateX(50%) translateY(0%); opacity: 0;}
    50% { opacity: 1;}
	100% { transform:translateX(0%) translateY(0%); opacity: 1;}
}
@keyframes top-in-animate {
	0% { transform:translateY(-100%); opacity: 0;}
	100% { transform:translateY(0%); opacity: 1;}
}
@keyframes btm-in-animate {
	0% { transform:translateY(20%); opacity: 0;}
	100% { transform:translateY(0%); opacity: 1;}
}
@keyframes zoom-pop-animate {
	0% { transform:scale(0); opacity: 1;}
	90% { transform:scale(1.2); opacity: 1;}
	100% { transform:scale(1); opacity: 1;}
}

@keyframes scale-up-animate {
	0% { transform:scale(0) translateY(50%);}
	100% { transform:scale(1) translateY(0%);}
}
@keyframes scale-down-animate {
	0% { transform:scale(1) translateY(0%);}
	100% { transform:scale(0) translateY(50%);}
}

@keyframes lights-animate {
	0%, 50%, 100% { opacity: 0;}
	5%, 45% { opacity: 1;}
}
@keyframes rotate-animate {
	0% { transform:rotate(0deg);}
	5% { transform:rotate(0deg); }
	10% { transform:rotate(360deg); }
	100% { transform:rotate(360deg); }
}

@keyframes heartBeat {
  0% {
    transform: scale(1) translateZ(0);
  }

  14% {
    transform: scale(1.10) translateZ(0);
  }

  28% {
    transform: scale(1) translateZ(0);
  }

  42% {
    transform: scale(1.10) translateZ(0);
  }

  65% {
    transform: scale(1) translateZ(0);
  }
}

@keyframes rubberBand {
  from {
    transform: scale3d(0, 0, 0);
      opacity: 0;
  }
    
  25% {
/*    transform: scale3d(1, 1, 1);*/
      opacity: 1;
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
      opacity: 1;
  }
}

@keyframes wobble-flip {
  from {
    transform: translate3d(0, 0, 0);
  }

  3% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  6% {
    transform: translate3d(4%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  9% {
    transform: translate3d(-3%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  12% {
    transform: translate3d(2%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  15% {
    transform: translate3d(-1%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes b-clouds-animate {
	0% { transform:translateX(0%);
		animation-timing-function: linear;}
	100% { transform:translateX(-100%); 
		animation-timing-function: linear;}
}


/* RESPONSIVE STYLES *****************************/

.container{
/*    max-width: 1560px;*/
    padding-right: var(--lg-pad);
    padding-left: var(--lg-pad);
}

.row {
    margin-right: var(--main-neg);
    margin-left: var(--main-neg);
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
/*
    position: relative;
    width: 100%;
    min-height: 1px;
*/
    padding-right: var(--lg-pad);
    padding-left: var(--lg-pad);
    padding-right: var(--main-pad);
    padding-left: var(--main-pad);
}

@media (min-width: 1921px) {
	.container {
		max-width: 1600px;
		padding-right: var(--lg-pad);
		padding-left: var(--lg-pad);
	}
	.content-block-main{
		max-width: 512px;
	}    
}

@media (min-width: 1600px) and (max-width: 1920px) {

	.container{
		max-width: 1440px;
        padding-right: var(--lg-pad);
        padding-left: var(--lg-pad);
	}
	
/*
	#modal-code .modal-dialog, #modal-win .modal-dialog{
		margin-top: 48px;
	}
*/
	
}

@media (min-width: 1200px) and (max-width: 1599px) {
    
    body{

    }
    h2 {
        
    }
    a.button, .button {

    }

	.container{
		max-width: 1320px;
		padding-right: var(--main-pad);
		padding-left: var(--main-pad);
	}
	
	.logo-main img,
	.header-logo-sub img{
		height: 48px;
	}
	
	#content-game{
		padding: 120px 0px 72px 0px; 
	}
	#start-content-wrap h2 {
		margin-bottom: 24px;
	}
	
	.modal-header h2{
		font-size: 26px;
	}
	
	#modal-code .modal-dialog, #modal-win .modal-dialog{
		margin-top: 72px;
	}
	
	#modal-code .modal-dialog .modal-content p:last-child{
		margin-bottom: 24px;	
	}
	
	.modal-logo {
		padding: 0 30%;
		margin-top: -15%;
	}

}
@media (min-width: 1400px) and (max-width: 1599px) and (min-height: 889px) {
	#content-main-image{
		background-size: contain;
	}
}

@media (min-width: 1200px) and (max-width: 1399px) and (min-height: 799px) {
	#content-main-image{
		background-size: contain;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
    body{

    }
	.container{
		padding-right: 16px;
		padding-left: 16px;
		max-width: 100%;
	}
	
	#content-game{
		padding: 24px 0px;
		padding: 120px 0px 72px 0px; 
	}

	#content-main-image{
		background-size: contain;
	}
	#header-bar{
		height: 144px;
	}
	
	#start-content-wrap h2 {
		margin-bottom: 24px;
	}
	
	.modal-header h2{
		font-size: 26px;
	}
	
	#modal-code .modal-dialog, #modal-win .modal-dialog{
		margin-top: 48px;
	}
	.modal-logo {
		padding: 0 30%;
		margin-top: -10%;
	}
	
	#modal-code .modal-dialog .modal-content p:last-child{
		margin-bottom: 24px;	
	}
	
	.playbutton {
		width: 96px;
		height: 96px;
	}
	
}
	
@media (min-width: 768px) and (max-width: 991px) {

	.container{
		padding-right: 16px;
		padding-left: 16px;
		max-width: 100%;
	}

	#content-main-image{
		background-size: contain;
	}
	#header-bar{
		height: 120px;
	}
	.content-main-logo img{
		height: 72px;
	}
	.content-block-main{
		padding: 24px;
		min-width: 90%;
	}
	.input-lg .form-control{
		font-size: 26px;
		letter-spacing: 34px;
	}

	.modal-dialog{
		width: 80%;
	}
	#modal-code .modal-dialog, #modal-win .modal-dialog{
		margin-top: 48px;
	}
	.modal-logo {
		padding: 0 30%;
		margin-top: -15%;
	}
	
	.full-popup .modal-dialog{
		padding-top: 0;
	}
	.full-popup .modal-dialog .modal-content{
		padding: 0 0%;	
	}
    
}

@media (max-width: 767px) {
	h1{
		font-size: 24px;	
	}	
	h2{
		font-size: 16px;	
		margin-bottom: 12px;
	}
	h3{
		font-size: 16px;
	}
	h4{
		font-size: 14px;
	}

	
    body{
        font-size: 14px;
    }
	.no-mob{
		display: none;
	}
	.outer-wrapper{
		overflow: hidden;		
	}
	.container{
		padding-right: 16px;
		padding-left: 16px;
		padding: 0;
		overflow: hidden;
		max-width: 100%;
	}
	
	input.button, .button, .button:visited, .w-btn, .b-btn{
		padding-left: 24px;
		padding-right: 24px;
	}
	.form-matd label.error, .form-group .error-text, .select-box .error-text, .checkbox .error-text, .form-captcha .error-text{
		bottom: -16px;
	}
	.form-group.is-valid:after{
		right: 0px;
	}
	.form-cols .form-group.is-valid:after {
		right: 8px;
	}
	
	.ch-btn{
		padding: 0;
		padding-bottom: 4px;
	}
	
	label{
		margin-bottom: 0;
	}
	
	#header{
		display: flex;
/*		justify-content: center;*/
		height:56px;
		padding: 8px 16px;
		background:var(--light-bg-color);
		box-shadow: 0px 1px 1px rgba(255,255,255,0.16);
	}
	.logo-main{
		display: flex;
		margin-right: 16px;
/*		margin: 0px;*/
	}
	.logo-main img{
		height: 40px
	}
	.header-logo-sub{
		display: none;
		display: flex;
		margin: 4px 0px;
	}
/*
	.start-game .logo-main{
		display: flex;
	}
*/
	.start-game .header-logo-sub{
		/* display: none; */
	}
	.header-logo-sub img{
		height: 32px
	}
	
	.nav-btns .i-btn{
		display: block;
	}
	.button.i-btn{
		width: 40px;
		height: 40px;
		padding: 7px 8px;
	}

	#header .btn-clean {
		padding: 7px 0px 7px 20px;
		line-height: 24px;
		height: 40px;
		margin: 0px;
		border: 1px solid var(--light-bg-color);
		background: var(--light-bg-color);
	}
	#header .btn-clean:hover {
		border: 1px solid var(--light-bg-color);
		background: var(--light-bg-color);
	}
	#header .dropdown-menu {
		right: initial !important;
		left: -8px !important;
	}
	#header .dropdown-menu:before {
		right: 40px;
	}

	#modal-code-start .form-btns {
		margin-top: 24px;
	}
	#header .dropdown-menu {
		right: initial !important;
		left: -8px !important;
	}
	.dropdown-item {
		font-size: 14px;
	}
	.dropdown-item i {
		font-size: 14px;
	}
	#outer-wrapper{

	}
	#header-bar{
		height: 72px;
		background-size: auto 120px;
		background-position: left top;
	}
	#content-main-image,
	.content-main-logo{
		display: none;
	}
	.main-container{
		background: var(--bg-color);
	}
	#content-main-image:after{
		display: none;
	}
	#start-content-image{
		display: flex;
		margin-left: -24px;
		margin-right: -24px;
	}
	#start-content-image .brand-logo {
		position: absolute;
		top: 32px;
		left: calc(50% - 72px);
		width: 144px;
	}
	#start-content-wrap{
		padding-top: 8px;
	}
	.content-box-image{
		display: none;
	}
	
	#content-game{
		width: 100%;
		padding-top: 0px;
		padding-bottom: 48px;
		background: none;
		justify-content: flex-start;
	}
	.content-main{
/*		padding: 24px;*/
		padding-top: 56px;
		background:var(--bg-color);
		min-height: 90vh;
		margin: 0;
		justify-content: flex-start;
	}
	.content-block-main{
		justify-content: flex-start;
		min-width: initial;
		width: 100%;
		max-width: 100%;
		box-shadow: none;
		border-radius: 0px;
		padding: 24px;
		background:var(--bg-color);
		backdrop-filter: none;
    	-webkit-backdrop-filter: none;
	}	
	#start-content.content-block-main{
		padding-top: 0px;	
	}
	#start-content-wrap h2 {
		margin-bottom: 16px;
	}
	
	.prize-wrapper{
		max-height: 75vh;	
	}
	
	#win-selection-content.content-block-main{
		background: var(--bg-color);
	}
/*
	.prize-main-wrapper:before{
		background: linear-gradient(to bottom, rgba(0,148,135,1) 0%, rgba(0,148,135,0) 100%);
	}
	.prize-main-wrapper:after{
		background: linear-gradient(to bottom, rgba(0,148,135,0) 0%, rgba(0,148,135,1) 100%);
	}
*/
	.prize-wrapper{
		background: var(--bg-color);
	}
	.prize-option-bg{
		background: url(../images/voucher-mobiel.svg) center bottom no-repeat;
		background-size: 100% 100%;
	}
/*
	.prize-option-bg:before,
	.prize-option-bg:after{
		background: var(--bg-color);
		border: 2px solid var(--bg-color);
	}
	.prize-option input[type=radio]:checked ~ .prize-option-bg{
		background: rgba(0,148,135,0.16);
		background: var(--sub-color);
	}
*/
	.prize-name {
		display: -webkit-box;
		overflow: hidden;
		text-overflow: ellipsis;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}
	.prize-img-block{
		padding: 20px 16px 20px 20px;
		height: 100%;
	}
	.prize-option-badge {
		font-size: 9px;
		padding: 2px 10px;
		border-radius: 5px;
	}
	
	body.prize-popup-open{
		overflow-y: hidden;
	}
	
	.prize-popup{
		border-radius: 0px;
	}
	.prize-popup:after{
		content: '';
		display: block;
		position: absolute;
		width: 100%;
		height: 50%;
		top: 100%;
    	left: 0;
    	background: rgba(0, 0, 0, 0.48);
	}
	
	.prize-popup .close-btn{
		top: 24px;	
		right: 16px;
	}
	.prize-popup-content{
		width: calc(100% - 32px);
	}
	
	.close-btn {
		position: absolute;
		right:24px;
		top:0px;
	}
	
	.input-lg .form-control{
		font-size: 24px;
		letter-spacing: 32px;
		letter-spacing: 40px;
	}
	
/*	#check-email-verification-wrap .content-info-block-image{*/
	.content-info-block-image{
		display: flex;
		margin-top: -24px;
		margin-left: -24px;
		margin-right: -24px;
		margin-bottom: 0px;
	}
	.content-info-block-image img{
		width: 100%;
		max-width: 100%;
	}
	.content-info-block-image.img-normal{
		display: none;
	}
	.content-info-block-image.img-mob{
		display: flex;
	}
	
	#game-animation{
		height: 70vh;
		height: 100vh;
		background: var(--light-bg-color);
		padding: 0px 0px;
		border-radius: 0px;
	}
	/* #game-animation-main{
		margin-top: -40%;
	} */
	#game-animation-title{
		padding: 0px 36px;
		top: 60%;
	}
	#game-animation-title span{
		
	}
	#game-animation-title h2{
		font-size: 20px;
		margin-bottom: 4px;
	}
	#game-animation-title span div{
		line-height: 1.4;
	}
	.form-group.form-group-lg{
        margin-bottom: 20px;
    }
	
	#game-start-code-error.error-text{
		bottom: -20px;
	}
	.form-code-input .form-input-sm{
        font-size: 26px;
        height: 64px;
    }
	
	#end-content-wrap, #before-start-wrap{
		height: 90%;
	}
	
	#win-selection-content{
		min-height: 70vh;
	}
	
	
	.form-group {
		margin-bottom: 16px;
	}
	.form-inline{
		margin-left: -8px;
		margin-right: -8px;
	}
	.row.form-cols {
		margin-left: -8px;
		margin-right: -8px;
	}
	.form-col{
		padding-left: 8px;
		padding-right: 8px;
		width: 100%;
	}
	.form-col-lg{
		width: 60%;
	}
	.form-col-sm{
		width: 40%;
	}
	.form-col-lg{
		width: 100%;
		margin-bottom: 16px;
	}
	.form-col-sm{
		width: 100%;
		
	}
	.form-col-sm .button{
		padding-left: 16px;	
		padding-right: 16px;	
	}
	
	.form-btns .button{
		width: 100%;
	}
	
	.form-control{
		font-size: 14px;
		-webkit-appearance: none;
		box-shadow: none !important;
	}
	.ch-btn label{
		font-size: 14px;		
	}
	.ch-btn label:hover span i{
        opacity: 0;
    }
	
	.modal-backdrop{
		height: 120vh;
	}
	
	.modal-logo {
		padding: 0 33%;
		margin-top: -10%;
		margin-top: 0%;
	}
	.modal-header{
		padding-bottom: 16px;
	}
	.modal-header h2{
		font-size: 18px;
	}
	.modal-body h3{
		font-size: 14px;
		margin-bottom: 0;
	}
	.modal-body .form-inline .form-col.form-col-sm{
		margin-bottom: 0;	
	}
	.modal-body p{
		margin-bottom:16px;
	}
	.modal.show{
		background: #00000033;
	}
	.modal-dialog{
		width: 100%;
		min-width: initial;
		max-width: calc(100% - 32px);
		max-width: 100%;
		margin-top: 0px;
		margin-bottom: 0px;
		background: #00000033;
/*
		padding-top: 24px;
		padding-bottom: 24px;
*/
	}
	
	.modal-dialog .modal-content{
		padding-top: 72px;
		padding-bottom: 24px;
	}
	#modal-contact .modal-dialog .modal-content{
		padding-top: 24px;
	}
	#modal-contact .modal-dialog .modal-content{
		
	}
	#modal-code, #modal-contact {
		background: #00000033;
	}
	#modal-code .modal-dialog{
		max-width: 100%;
	}
	.modal-content{
		padding: 0px;
	}
	.modal-content .close{
		right: 24px;
		top: 24px;
		padding: 6px;
	}
	.modal-footer .button{
		width: 100%;
	}
	
	#modal-code .modal-footer, #modal-win .modal-footer{
		padding-top: 8px;
	}
	
	.modal-voucher{
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 16px;
		padding: 16px;
	}
	.modal-voucher h3{
		font-size: 16px;	
	}
	#modal-terms .modal-body, #modal-faq .modal-body{
		margin-right: 12px;	
	}
	.prizes{
		margin-bottom: 0;
	}
	
	.form-complete-img span{
		width: 100px;
		height: 100px;
	}
	.form-complete p{
		font-size: 16px;
	}
	.full-popup .modal-dialog{
		padding-top: 0;
	}
	
	.full-popup .modal-dialog .modal-content{
		padding: 24px 0%;	
	}
	.full-popup .modal-content .close{
		top: 24px;
	}
	
	#modal-newsletter-bonus .modal-dialog,
	#modal-error .modal-dialog {
		padding: 0 24px;	
	}
	#modal-newsletter-bonus .modal-content,
	#modal-error .modal-content{
		padding-top: 24px;
		padding-bottom: 0px;
	}
	#modal-newsletter-bonus .modal-header,
	#modal-error .modal-header{
		padding-bottom: 8px;
	}
	#modal-error .modal-title{
		font-size: 20px;
	}
	#modal-newsletter-bonus .modal-body,
	#modal-error .modal-body {
		font-size: 14px;
	}
	#modal-error .modal-content .close {
		right: 16px;
    	top: 16px;
	}
	.modal-footer-buttons{
		display: flex;	
		flex-direction: column;
		justify-content: flex-start;
	}
	.modal-footer-buttons .button{
		width: 100%;
		margin: 0;
	}
	.modal-footer-buttons .button.b-btn{
		order: 2;
		margin-top: 16px;
	}	
	
	.g-recaptcha, .g-recaptcha-contact{
		-webkit-transform-origin:0 0;
		transform-origin:0 0;
		-webkit-transform:scale(0.85);
		transform:scale(0.85);
	}
	
	.footer-main{
		padding: var(--main-pad);
	}
	.footer-nav{
		flex-direction: column;
	}
}
@media (max-width: 375px) {
	.modal-dialog{
		margin-top: 0px;
		margin-bottom: 0px;
		
	}
	#modal-code .modal-content, #modal-win .modal-content{
		padding-top: 72px;
		padding-bottom: 24px;
	}	
	input.button, .button, .button:visited, .w-btn, .b-btn{
		padding-left: 24px;
		padding-right: 24px;
	}	
	.input-lg .form-control{
		font-size: 24px;
		letter-spacing: 32px;
	}
	.form-code-input .form-input-sm{
        font-size: 26px;
        height: 64px;
        padding: 12px 4px;
    }
	
	.content-block-main .ch-btn label {
		margin-right: -4px;
	}
	
}
@media (max-width: 340px) {
	#modal-code .modal-dialog, #modal-win .modal-dialog{
		margin: 0px;
	}
	#modal-code .modal-content, #modal-win .modal-content{
		padding-top: 64px;
		padding-bottom: 24px;
	}
}

/* LANDSCAPE WARNING SPECIFIC */

#landscape-warning {
    background: var(--sub-color);
    display: none;
    position: fixed;
    z-index: 1000000;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#landscape-warning-inner-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    text-align: center;
    vertical-align: middle;
    height: 50%;
    width: 50%;
    top:25%;
    left:25%;
}
#landscape-warning-inner {
    position: relative;
}
#landscape-warning-inner div{
    margin-bottom: 8px;
}
#landscape-warning-inner img {
    position: relative;
    width: 40%;
    max-width: 100%;
}
#landscape-warning-inner span {
    position: relative;
    text-align: center;
    color: #FFFFFF;
}
@-webkit-keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@-webkit-keyframes fade-out {
    0% { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes fade-out {
    0% { opacity: 1; }
    100% { opacity: 0; }
}
#landscape-warning.show {
    display: block;

    -webkit-animation: fade-in 400ms linear;
    animation: fade-in 400ms linear;
    -webkit-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
}
